home *** CD-ROM | disk | FTP | other *** search
/ MacFormat España 26 / macformat_26.iso / Shareware / Programación / C Reference Card / C Reference Card.rsrc / TEXT_401_1.txt < prev    next >
Text File  |  1997-01-29  |  9KB  |  203 lines

  1. BASICS : C versus C++, program form, data types, strings, constants ...
  2. _________________________________________________________________________
  3.  
  4.  
  5. C VERSUS C++
  6.  
  7. C is a subset of C++.  A well-written C program file should compile on a C++ compiler with little or no changes.  If your wondering whether you should learn one or the other - don't.  Learn C++ and you'll get the benefits of both C and C++.
  8.  
  9. As a note, every program in this reference has been compiled and run to verify syntax and assure that the code snippets are correct.
  10.  
  11.  
  12.  
  13. PROGRAM FORM
  14.  
  15. As an ongoing tradition, the first program you write should be the infamous "Hello World" program.
  16.  
  17.   // hello.cp
  18.   #include <iostream.h>
  19.  
  20.   void main( void )
  21.   {
  22.     cout << "hello world" << endl;
  23.   }
  24.   // end hello.cp
  25.  
  26. To be truely portable, a C/C++ program should declare 'main' to return an integer value.  If a program is successful, it should return a zero.  The following program is identical to the previous one except it uses the more standard protocol.
  27.  
  28.   // portable.cp
  29.   #include <iostream.h>
  30.  
  31.   int main( void )     // portable C code uses 'int main'
  32.   {
  33.     cout << "hello world" << endl;
  34.     
  35.     return 0;          // successful program termination
  36.   }
  37.   // end portable.cp
  38.  
  39. Returning a value of '1' generally represents an unsuccessful program termination.  You can also use the EXIT_SUCCESS and/or EXIT_FAILURE definitions located in the standard library file (i.e., stdlib.h).  Most of the sample programs in this reference use the clearer, but slightly less portable 'void main' declaration.
  40.  
  41. Anything on a line after a double slash (//) is ignored by the compiler and is the standard way of commenting code in C++.  Another way to comment your code is to use the C-style slash-asterisk method.  The following program "square.cp" is almost as simple as the 'hello world' program, except it demonstrates the basics of using functions as well as both styles of comments.
  42.  
  43.   // square.cp
  44.   /*
  45.      Sometimes it convenient to use the "old" C-style comments,
  46.      especially when you have more than one line of stuff to say.
  47.   */
  48.  
  49.   #include <iostream.h> // standard library.
  50.  
  51.   #define MAX 10        // preprocessor directive.
  52.  
  53.   int DoSquare(int);    // function prototypes required in C++.
  54.  
  55.   void main( void )     // main is the start of all C programs.
  56.   {
  57.     int n;
  58.     for(n=1;n<MAX;n++)
  59.       cout << n << " squared = " << DoSquare(n) << endl;
  60.   }
  61.  
  62.   int DoSquare(int m)   // function definition.
  63.   {
  64.     m = m * m;
  65.     return m;           // return value.
  66.   }
  67.   // end square.cp
  68.  
  69. White space is ignored in C/C++.  Brackets {} are used to group (or enclose) multiple statements.  Function calls are depicted with parenthesis () at the end of a function name which enclose variables which are used during the function call.  Semicolons depict the end of a statement (i.e., you can place multiple statements on a single line separated by semicolons if you wanted).
  70.  
  71.  
  72.  
  73. DATA TYPES AND TYPE CONVERSION
  74.  
  75. The following program identifies the built-in data types supported by C and methods for converting between these data types.
  76.  
  77.   // types.cp
  78.   #include <iostream.h>
  79.  
  80.   void main( void )
  81.   {
  82.     // declarations
  83.     char                c = 'A';  // usually 1-byte long.
  84.     short int           si= 1;    // minimum range +/-32767.
  85.     short               s = 2;    // short same as short int.
  86.     int                 i = 3;    // minimum range +/-32767.
  87.     long int            li= 4;    // minimum range +/-2147483647.
  88.     long                l = 5;    // long same as long int.
  89.     float               f = 10.1; // min 6 digits (decimal) precision.
  90.     double              d = 11.2; // min 10 digits (decimal) precision.
  91.     long double         ld= 12.3;
  92.  
  93.     unsigned char       uc;       // unsigned integers can only store
  94.     unsigned short int  usi;      // positive numbers.
  95.     unsigned int        ui;
  96.     unsigned long int   uli;
  97.  
  98.     signed char         sc;       // signed integers can store positive
  99.     signed short int    ssi;      // or negative numbers.
  100.     signed int          si2;
  101.     signed long int     sli;
  102.  
  103.     // simple assignment
  104.     s = 3;
  105.     cout << s << endl;
  106.  
  107.     // automatic conversion
  108.     f = s * i / d;
  109.     cout << f << endl;
  110.  
  111.     // inline conversions
  112.     ld = (long double)i;
  113.     s = short(d);
  114.     cout << ld << endl << s << endl;
  115.   }
  116.   // end types.cp
  117.  
  118.  
  119.  
  120. STRINGS
  121.  
  122. Strings in C are "null terminated".  This means that the following declaration;
  123.  
  124.   char *str = "Test string";
  125.  
  126. allocates a block of memory 12 bytes long and returns a pointer 'str' to the first character in the string.  The first 11 bytes contain the characters "Test string", the 12th byte contains NULL (i.e., \0 or zero).  To declare an empty string, use the following:
  127.  
  128.   char *nullStr = "";
  129.  
  130. Since the MacOS is based on Pascal strings, it is important that the difference be discussed.  The same string in Pascal would also be 12 bytes long, however, the first character in the string is actually the integer '11' which defines how many characters are in the string.  Your compiler should provide functions such as CtoPstr() and PtoCstr() to convert between the two formats.  If you want to declare a Pascal-style string in C, use the following:
  131.  
  132.   char *Pstr = "\pThis is a Pascal string";
  133.  
  134.  
  135.  
  136. CONSTANTS
  137.  
  138.   // constant definition examples
  139.   #define INTEGER         123
  140.   #define LONG            123L
  141.   #define UNSIGNED_LONG   123UL
  142.   #define FLOAT           12.3F
  143.   #define CHAR_CONST      'A'
  144.   #define OCTAL           037           /* leading zero */
  145.   #define HEXADECIMAL     0X5
  146.   #define STRING          "characters"
  147.  
  148.   // escape sequences
  149.   #define ALERT           \a
  150.   #define BACKSPACE       \b
  151.   #define FORMFEED        \f
  152.   #define NEWLINE         \n
  153.   #define CARRIAGE_RETURN \r
  154.   #define HORIZ_TAB       \t
  155.   #define VERT_TAB        \v
  156.   #define BACKSLASH       \\
  157.   #define QUESTION_MARK   \?
  158.   #define SINGLE_QUOTE    \'
  159.   #define DOUBLE_QUOTE    \"
  160.   #define OCTAL_SEQ       \o13          /* vertical tab */
  161.   #define HEX_SEQ         \x7           /* alert */
  162.  
  163.   // enumeration constants
  164.   enum boolean { FALSE, TRUE };
  165.   enum identifiers { first = 1, second, third };
  166.  
  167. The first item in an enumeration statement has a value of 0, the next 1, the next 2, etc. unless specified values are provided.
  168.  
  169.  
  170.  
  171. TERMINOLOGY
  172.  
  173. There‚Äôs a lot of fancy terminology in C++ which tends to confuse the novice.  Here are some of the buzz words that are used in object-oriented programming and what they mean:
  174.  
  175. Instances - Variables of a pre-defined class type are called instances of that class, or objects.
  176.  
  177. Objects - Objects are variables which are instances of a class.  Here is a simple example:
  178.  
  179.   class Student          // define class Student
  180.   {
  181.     char *name;
  182.     char *address;
  183.     int  id;
  184.  
  185.     void input( void );  // class methods
  186.     void print( void );
  187.   }
  188.  
  189.   Student freshman;      // freshman is an object,
  190.                          // a class variable, and
  191.                          // an instance of the class Student. 
  192.  
  193. Methods - Methods are nothing more than member functions of a class.
  194.  
  195. Polymorphism - When the same function works on different types of objects, it‚Äôs called polymorphism.  For example, you OPEN a door, you OPEN a window, and you OPEN your eyes.  Polymorphism means ‚Äúmany different forms‚Äù.
  196.  
  197. Encapsulation - The combination of member data and member functions (or methods) into an object.  With C++, you assign an object data attributes and methods which operate on the data.  Generally speaking, all of the code for a particular class of objects is maintained in a separate source code file, or in other words, it‚Äôs encapsulated.
  198.  
  199. Inheritance - One of the coolest things about C++ is that you can create an object which inherits all of the capabilities of a parent object, and then make minor modifications to suit your needs.  For example, if there was a window class which did everything you needed except for, say, window resizing.  You could create a subclass of the window class and then add the code needed to perform the task.  There are two important things to realize: 1) you only need to add the code to perform the specific task you need, and; 2) you don‚Äôt need the original source code of the parent class to make modifications.
  200.  
  201. Multiple Inheritance - Inheriting capabilities or traits from more than one parent defines multiple inheritance.  There are some problems with using multiple inheritance and many programmers avoid it at all costs (similar to using goto statements), but there are times when it can be useful.
  202.  
  203. Virtual Function (or method) - Allows polymorphism by defining a function which is called by an object at runtime (i.e., late binding) instead of at compile time (i.e., early binding).